其他
科普 | Eth2 验证者如何生成和保护取款密钥
来源 | 以太坊爱好者
取款密钥是什么?
取款密钥是用来干什么的?
要保护多少个私钥?
步骤
创建提款钱包;
创建提款账户;
记录取款公钥;
删除提款钱包;
确认提款钱包可以恢复。
创建提款钱包
ethdo wallet create --wallet="Staking wallet" --type=hd --walletpassphrase=secret1
创建提款账户
ethdo account create --account="Staking wallet/Withdrawal account" --walletpassphrase=secret1 --passphrase=secret2
记录取款公钥
ethdo account info --account="Staking wallet/Withdrawal account"
删除提款钱包
ethdo wallet delete --wallet="Staking wallet"
ethdo wallet info --wallet="Staking wallet"
确认提款钱包可以恢复
ethdo wallet create --wallet="Recovery wallet" --type=hd --walletpassphrase=temp1 --mnemonic="MNEMONIC"
ethdo account create --account="Recovery wallet/Withdrawal account" --walletpassphrase=temp1 --passphrase=temp2
ethdo account info --account="Recovery wallet/Withdrawal account"
ethdo wallet delete --wallet="Recovery wallet"
ethdo wallet info --wallet="Recovery wallet"